home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MATH
/
EDUDRILS
/
CHKFILE.BAT
next >
Wrap
DOS Batch File
|
1994-05-20
|
186b
|
15 lines
@echo off
CLS
if exist %1 goto ask
GOTO quit
: ask
echo File already exists. Overwrite?
input (Y or N)
if %ans%==Y goto delete
GOTO quit
: delete
del %1
: quit
set ans=